f9d03c90562e79325700427241d646bc46b0a1a4,src/main/java/com/sothawo/mapjfx/offline/CachingHttpURLConnection.java,CachingHttpURLConnection,getContentLengthLong,#,169

Before Change


    }

    public long getContentLengthLong() {
        return delegate.getContentLengthLong();
    }

    public String getContentType() {

After Change


    }

    public long getContentLengthLong() {
        return readFromCache ? -1 : delegate.getContentLengthLong();
    }

    public String getContentType() {